home *** CD-ROM | disk | FTP | other *** search
/ AT&T WorldNet Service / WorldNet Service Installation Disk - Cybercathlon Games and Interactive Tour of Olympic Museum (1996).ISO / olympics / graphics / ezlfist.xof < prev    next >
Text File  |  1996-05-21  |  7KB  |  335 lines

  1. xof 0302txt 0064
  2. template Header {
  3.  <3D82AB43-62DA-11cf-AB39-0020AF71E433>
  4.  WORD major;
  5.  WORD minor;
  6.  DWORD flags;
  7. }
  8.  
  9. template Vector {
  10.  <3D82AB5E-62DA-11cf-AB39-0020AF71E433>
  11.  FLOAT x;
  12.  FLOAT y;
  13.  FLOAT z;
  14. }
  15.  
  16. template Coords2d {
  17.  <F6F23F44-7686-11cf-8F52-0040333594A3>
  18.  FLOAT u;
  19.  FLOAT v;
  20. }
  21.  
  22. template Matrix4x4 {
  23.  <F6F23F45-7686-11cf-8F52-0040333594A3>
  24.  array FLOAT matrix[16];
  25. }
  26.  
  27. template ColorRGBA {
  28.  <35FF44E0-6C7C-11cf-8F52-0040333594A3>
  29.  FLOAT red;
  30.  FLOAT green;
  31.  FLOAT blue;
  32.  FLOAT alpha;
  33. }
  34.  
  35. template ColorRGB {
  36.  <D3E16E81-7835-11cf-8F52-0040333594A3>
  37.  FLOAT red;
  38.  FLOAT green;
  39.  FLOAT blue;
  40. }
  41.  
  42. template IndexedColor {
  43.  <1630B820-7842-11cf-8F52-0040333594A3>
  44.  DWORD index;
  45.  ColorRGBA indexColor;
  46. }
  47.  
  48. template Boolean {
  49.  <4885AE61-78E8-11cf-8F52-0040333594A3>
  50.  WORD truefalse;
  51. }
  52.  
  53. template Boolean2d {
  54.  <4885AE63-78E8-11cf-8F52-0040333594A3>
  55.  Boolean u;
  56.  Boolean v;
  57. }
  58.  
  59. template MaterialWrap {
  60.  <4885AE60-78E8-11cf-8F52-0040333594A3>
  61.  Boolean u;
  62.  Boolean v;
  63. }
  64.  
  65. template TextureFilename {
  66.  <A42790E1-7810-11cf-8F52-0040333594A3>
  67.  STRING filename;
  68. }
  69.  
  70. template Material {
  71.  <3D82AB4D-62DA-11cf-AB39-0020AF71E433>
  72.  ColorRGBA faceColor;
  73.  FLOAT power;
  74.  ColorRGB specularColor;
  75.  ColorRGB emissiveColor;
  76.  [...]
  77. }
  78.  
  79. template MeshFace {
  80.  <3D82AB5F-62DA-11cf-AB39-0020AF71E433>
  81.  DWORD nFaceVertexIndices;
  82.  array DWORD faceVertexIndices[nFaceVertexIndices];
  83. }
  84.  
  85. template MeshFaceWraps {
  86.  <4885AE62-78E8-11cf-8F52-0040333594A3>
  87.  DWORD nFaceWrapValues;
  88.  Boolean2d faceWrapValues;
  89. }
  90.  
  91. template MeshTextureCoords {
  92.  <F6F23F40-7686-11cf-8F52-0040333594A3>
  93.  DWORD nTextureCoords;
  94.  array Coords2d textureCoords[nTextureCoords];
  95. }
  96.  
  97. template MeshMaterialList {
  98.  <F6F23F42-7686-11cf-8F52-0040333594A3>
  99.  DWORD nMaterials;
  100.  DWORD nFaceIndexes;
  101.  array DWORD faceIndexes[nFaceIndexes];
  102.  [Material]
  103. }
  104.  
  105. template MeshNormals {
  106.  <F6F23F43-7686-11cf-8F52-0040333594A3>
  107.  DWORD nNormals;
  108.  array Vector normals[nNormals];
  109.  DWORD nFaceNormals;
  110.  array MeshFace faceNormals[nFaceNormals];
  111. }
  112.  
  113. template MeshVertexColors {
  114.  <1630B821-7842-11cf-8F52-0040333594A3>
  115.  DWORD nVertexColors;
  116.  array IndexedColor vertexColors[nVertexColors];
  117. }
  118.  
  119. template Mesh {
  120.  <3D82AB44-62DA-11cf-AB39-0020AF71E433>
  121.  DWORD nVertices;
  122.  array Vector vertices[nVertices];
  123.  DWORD nFaces;
  124.  array MeshFace faces[nFaces];
  125.  [...]
  126. }
  127.  
  128. Header {
  129.  1;
  130.  0;
  131.  1;
  132. }
  133.  
  134. Mesh {
  135.  48;
  136.  -0.065563;0.044449;0.070656;,
  137.  -0.120618;-0.225401;0.117286;,
  138.  0.028491;-0.260189;0.117286;,
  139.  -0.065563;0.044449;0.070656;,
  140.  0.028491;-0.260189;0.117286;,
  141.  0.047035;0.028108;0.070656;,
  142.  -0.065563;0.022238;-0.093433;,
  143.  -0.120618;-0.240267;-0.145801;,
  144.  -0.120618;-0.225401;0.117286;,
  145.  -0.065563;0.022238;-0.093433;,
  146.  -0.120618;-0.225401;0.117286;,
  147.  -0.065563;0.044449;0.070656;,
  148.  0.047035;0.028108;0.070656;,
  149.  0.047035;0.008198;-0.085072;,
  150.  -0.065563;0.022238;-0.093433;,
  151.  0.047035;0.028108;0.070656;,
  152.  -0.065563;0.022238;-0.093433;,
  153.  -0.065563;0.044449;0.070656;,
  154.  0.047035;0.028108;0.070656;,
  155.  0.028491;-0.260189;0.117286;,
  156.  0.028491;-0.275056;-0.145801;,
  157.  0.047035;0.028108;0.070656;,
  158.  0.028491;-0.275056;-0.145801;,
  159.  0.047035;0.008198;-0.085072;,
  160.  0.028491;-0.275056;-0.145801;,
  161.  0.028491;-0.260189;0.117286;,
  162.  -0.120618;-0.225401;0.117286;,
  163.  0.028491;-0.275056;-0.145801;,
  164.  -0.120618;-0.225401;0.117286;,
  165.  -0.120618;-0.240267;-0.145801;,
  166.  -0.099571;-0.200510;-0.194393;,
  167.  0.047035;0.008198;-0.085072;,
  168.  0.028491;-0.275056;-0.145801;,
  169.  -0.099571;-0.200510;-0.194393;,
  170.  -0.065563;0.022238;-0.093433;,
  171.  0.047035;0.008198;-0.085072;,
  172.  -0.064315;-0.173399;-0.108905;,
  173.  -0.065563;0.022238;-0.093433;,
  174.  -0.099571;-0.200510;-0.194393;,
  175.  -0.064315;-0.173399;-0.108905;,
  176.  -0.099571;-0.200510;-0.194393;,
  177.  0.028491;-0.275056;-0.145801;,
  178.  -0.064315;-0.173399;-0.108905;,
  179.  0.028491;-0.275056;-0.145801;,
  180.  -0.120618;-0.240267;-0.145801;,
  181.  -0.064315;-0.173399;-0.108905;,
  182.  -0.120618;-0.240267;-0.145801;,
  183.  -0.065563;0.022238;-0.093433;;
  184.  
  185.  16;
  186.  3;0,1,2;,
  187.  3;3,4,5;,
  188.  3;6,7,8;,
  189.  3;9,10,11;,
  190.  3;12,13,14;,
  191.  3;15,16,17;,
  192.  3;18,19,20;,
  193.  3;21,22,23;,
  194.  3;24,25,26;,
  195.  3;27,28,29;,
  196.  3;30,31,32;,
  197.  3;33,34,35;,
  198.  3;36,37,38;,
  199.  3;39,40,41;,
  200.  3;42,43,44;,
  201.  3;45,46,47;;
  202.  
  203.  MeshMaterialList {
  204.   1;
  205.   1;
  206.   0;;
  207.   Material {
  208.    0.760784;0.458824;0.317647;1.000000;;
  209.    0.000000;
  210.    0.000000;0.000000;0.000000;;
  211.    0.000000;0.000000;0.000000;;
  212.   }
  213.  }
  214.  MeshNormals {
  215.   48;
  216.   0.313734;-0.604418;-0.732291;,
  217.   0.806908;0.468717;-0.359449;,
  218.   -0.360339;0.309736;-0.879898;,
  219.   0.313734;-0.604418;-0.732291;,
  220.   -0.360339;0.309736;-0.879898;,
  221.   -0.733471;-0.637070;-0.236984;,
  222.   0.703581;-0.697428;0.136260;,
  223.   0.839285;0.451758;0.302516;,
  224.   0.806908;0.468717;-0.359449;,
  225.   0.703581;-0.697428;0.136260;,
  226.   0.806908;0.468717;-0.359449;,
  227.   0.313734;-0.604418;-0.732291;,
  228.   -0.733471;-0.637070;-0.236984;,
  229.   -0.727086;-0.502266;0.468054;,
  230.   0.703581;-0.697428;0.136260;,
  231.   -0.733471;-0.637070;-0.236984;,
  232.   0.703581;-0.697428;0.136260;,
  233.   0.313734;-0.604418;-0.732291;,
  234.   -0.733471;-0.637070;-0.236984;,
  235.   -0.360339;0.309736;-0.879898;,
  236.   -0.514947;0.753383;0.408954;,
  237.   -0.733471;-0.637070;-0.236984;,
  238.   -0.514947;0.753383;0.408954;,
  239.   -0.727086;-0.502266;0.468054;,
  240.   -0.514947;0.753383;0.408954;,
  241.   -0.360339;0.309736;-0.879898;,
  242.   0.806908;0.468717;-0.359449;,
  243.   -0.514947;0.753383;0.408954;,
  244.   0.806908;0.468717;-0.359449;,
  245.   0.839285;0.451758;0.302516;,
  246.   0.356256;0.167697;0.919217;,
  247.   -0.727086;-0.502266;0.468054;,
  248.   -0.514947;0.753383;0.408954;,
  249.   -0.116922;-0.395130;0.911154;,
  250.   -0.116922;-0.395130;0.911154;,
  251.   -0.116922;-0.395130;0.911154;,
  252.   0.000000;0.000000;0.000000;,
  253.   0.000000;0.000000;0.000000;,
  254.   0.000000;0.000000;0.000000;,
  255.   0.000000;0.000000;0.000000;,
  256.   0.000000;0.000000;0.000000;,
  257.   0.000000;0.000000;0.000000;,
  258.   0.000000;0.000000;0.000000;,
  259.   0.000000;0.000000;0.000000;,
  260.   0.000000;0.000000;0.000000;,
  261.   0.000000;0.000000;0.000000;,
  262.   0.000000;0.000000;0.000000;,
  263.   0.000000;0.000000;0.000000;;
  264.  
  265.   16;
  266.   3;0,1,2;,
  267.   3;3,4,5;,
  268.   3;6,7,8;,
  269.   3;9,10,11;,
  270.   3;12,13,14;,
  271.   3;15,16,17;,
  272.   3;18,19,20;,
  273.   3;21,22,23;,
  274.   3;24,25,26;,
  275.   3;27,28,29;,
  276.   3;30,31,32;,
  277.   3;33,34,35;,
  278.   3;36,37,38;,
  279.   3;39,40,41;,
  280.   3;42,43,44;,
  281.   3;45,46,47;;
  282.  }
  283.  MeshTextureCoords {
  284.   48;
  285.   0.000000;1.000000;,
  286.   0.000000;0.000000;,
  287.   1.000000;0.000000;,
  288.   0.000000;1.000000;,
  289.   1.000000;0.000000;,
  290.   1.000000;1.000000;,
  291.   0.000000;1.000000;,
  292.   0.000000;0.000000;,
  293.   1.000000;0.000000;,
  294.   0.000000;1.000000;,
  295.   1.000000;0.000000;,
  296.   1.000000;1.000000;,
  297.   0.000000;1.000000;,
  298.   0.000000;0.000000;,
  299.   1.000000;0.000000;,
  300.   0.000000;1.000000;,
  301.   1.000000;0.000000;,
  302.   1.000000;1.000000;,
  303.   0.000000;1.000000;,
  304.   0.000000;0.000000;,
  305.   1.000000;0.000000;,
  306.   0.000000;1.000000;,
  307.   1.000000;0.000000;,
  308.   1.000000;1.000000;,
  309.   0.000000;1.000000;,
  310.   0.000000;0.000000;,
  311.   1.000000;0.000000;,
  312.   0.000000;1.000000;,
  313.   1.000000;0.000000;,
  314.   1.000000;1.000000;,
  315.   0.000000;0.000000;,
  316.   0.000000;0.000000;,
  317.   0.000000;0.000000;,
  318.   0.000000;0.000000;,
  319.   0.000000;0.000000;,
  320.   0.000000;0.000000;,
  321.   0.000000;0.000000;,
  322.   0.000000;0.000000;,
  323.   0.000000;0.000000;,
  324.   0.000000;0.000000;,
  325.   0.000000;0.000000;,
  326.   0.000000;0.000000;,
  327.   0.000000;0.000000;,
  328.   0.000000;0.000000;,
  329.   0.000000;0.000000;,
  330.   0.000000;0.000000;,
  331.   0.000000;0.000000;,
  332.   0.000000;0.000000;;
  333.  }
  334. }
  335.